home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-11 / cbj21.zip / CBJ21.DOC < prev    next >
Text File  |  1993-01-04  |  6KB  |  128 lines

  1.              ╒═════════════════════════════════════════╕
  2.              │              C L I P P E R              │
  3.              │                                         │
  4.              │        B L A C K J A C K        │
  5.              │                                         │
  6.              │   Copyright (c) 1989, Jeanne Nerwinski  │
  7.              │                                         │
  8.              │            CIS ID 71531, 3432           │
  9.              │                                         │
  10.              │        Triangle Message Base BBS        │
  11.              │             (919) 383-9450              │
  12.              │                                         │
  13.              ╘═════════════════════════════════════════╛
  14.  
  15.     Version 2.1                                            10/27/89
  16.     (Maintenance Release)
  17.  
  18.     CLIPPER BLACK JACK is written entirely in Clipper using the
  19.     Summer '87 version.  No additional libraries or Third Party
  20.     Products are required.
  21.  
  22.     A special "Thanks!", however, to Greg Lief (Mr. Grumpfish and my
  23.     MDP) for providing the source for "Charge".  This function is only
  24.     one of several games and musical interludes to be found in the
  25.     Grumpfish Fun Library, a Public Domain Library available on many
  26.     Bulletin Board Systems.
  27.  
  28.     More special thanks go to Gordon Rasnick and Tom Faulkner, my
  29.     fearless and ever critical beta testers.
  30.  
  31.     CLIPPER BLACK JACK is NOT PUBLIC DOMAIN!  This is a shareware
  32.     product and I do ask for a $5.00 registration fee.  $15.00 will
  33.     provide you with full registration and a copy of the source code
  34.     on disk.
  35.  
  36.     The previous version of CLIPPER BLACK JACK had well over 100
  37.     downloads on the Nantucket Forum of CIS.  Registrations did not
  38.     reflect this interest.  It make me wonder if 1) downloaders found
  39.     it interesting but not something they would use, or, 2) downloaders
  40.     are using it without registering.  I suspect the latter.
  41.  
  42.     This version, therefore, is now limited to ten (10) plays.  I
  43.     really didn't want to do this, but didn't have any choice.  This
  44.     restriction can, of course, be removed if you purchase the source.
  45.  
  46.     To register, send your check or Money Order to:
  47.  
  48.                            Jeanne Nerwinski
  49.                            112 Leon Street
  50.                            Durham, NC 27704
  51.  
  52.     Your contribution will enable me to continue with this project and
  53.     provide for more games in the future.  A version of SLOTS and CRAPS
  54.     are in the works!
  55.  
  56.  
  57.   GENERAL INSTRUCTIONS:
  58.  
  59.     CLIPPER BLACK JACK can be linked as a stand alone program or
  60.     incorporated into your existing programs from a Menu Selection
  61.     You will need to link in (using your favorite linker) CLIPPER.LIB
  62.     and EXTEND.LIB.
  63.  
  64.     You should be aware that CLIPPER BLACK JACK makes use of the F1
  65.     (KEY 28) and F10 (KEY -9) keys.  They are automatically unassigned
  66.     when you exit CBJ.  If you are incorporating CBJ into an existing
  67.     application which makes use of either of these keys, you will need
  68.     to reassign them upon returning to your program.
  69.  
  70.     Clipper Black Jack can also be called from any wait state in your
  71.     program by a "Hot Key".  Simply choose the key you wish to use, for
  72.     example, F9, and issue the following statement at the beginning
  73.     of your program:   SET KEY -8 TO CBJ.
  74.  
  75.     Clipper Black Jack is well behaved and "cleans up" after itself when
  76.     you return to your program.  All memory variables used by Clipper
  77.     Black Jack are released at that time.
  78.  
  79.  GAME INSTRUCTIONS:
  80.  
  81.     Everyone knows how to play Black Jack, so I will simply give you
  82.     the basic ground rules for this particular version.
  83.  
  84.     Each time you enter the game you are given a stake of $5,000.  You
  85.     may bet as much as you like on each hand to the house limit of
  86.     $1,000.
  87.  
  88.     Aces can count for 1 or 11 (player's choice).  Face Cards count as
  89.     10.  All others count for their pip value.
  90.  
  91.     Black Jack (21 on the first two cards) immediately pays 1½ times
  92.     the amount of your original bet, ignoring the House Limit,
  93.     provided the Dealer does not also have Black Jack, in which case
  94.     the hand is a Draw.
  95.  
  96.     After the initial deal you will be given the option to double your
  97.     original bet (again ignoring the House Limit).  This also implies
  98.     an immediate Hit and you will be given only one more card.  Your
  99.     total after that card is your final score for that hand.
  100.  
  101.     You can Hit (get another card) or Stand on what you have.  If you
  102.     go over 21 on a Hit, you automatically lose the amount of your
  103.     bet.
  104.  
  105.     The dealer will Hit on 16 or less, Stand on 17 or more.  If the
  106.     dealer goes over 21, you win the amount of your bet.  If the
  107.     dealer Stands on less than 21, the winner is determined by the pip
  108.     value, high scorer wins.  In the case of a Draw, all bets are off!
  109.  
  110.     This version now includes "Splits".  If your first two cards is a
  111.     pair, you will be given the option to split the pair.  If you decide
  112.     to split, the amount of your original bet will automatically be
  113.     placed on the second hand.  You then play each hand as you would
  114.     a single hand.
  115.  
  116.     A Help Screen is provided from within the game by pressing F1.
  117.     The sound can be turned on and off by pressing F10.
  118.  
  119.     Enjoy!  And please provide feedback!
  120.  
  121.                                        Jeanne Nerwinski
  122.  
  123. |   Note:  This release corrects a problem we had on running Clipper
  124. |   Black Jack on XTs.  The program would "hang" during the Shuffle
  125. |   routine.  This has hopefully been corrected.  The added benefit
  126. |   is that the Shuffle routine is now much faster on all types of
  127. |   equipment.
  128.